@@title WikiWriter Tutorial: Construct tables .nav WikiWriter Tutorial: ((tutor10|Prev)) | ((tutor00|Up)) | ((tutor12|Next)) .end == Construct tables For basic tables you could use the HTML PRE tag:

<pre>

--------------------------------------

Some text          Some more text

A word or two      Maybe three or four

--------------------------------------

</pre>

gives you:

--------------------------------------

Some text          Some more text

A word or two      Maybe three or four

--------------------------------------

That's not really elegant, but will sometimes do the job. To get into really fancy tables, you have to use HTML markup.

<table border=1>

<tr>One Cell</td><td>Another cell</td></tr>

<tr><td colspan=2>Big 2-column cell</td></tr>

</table>

gives you:
One CellAnother cell
Big 2-column cell
I looked at some methods for simplifying table markup in the wiki manner, but they all came out almost as complicated as the basic HTML, without the flexibility. If you really want to use tables for layout instead of the sophisticated, simple, modern CSS methods, you need to learn how to do it in HTML. .nav WikiWriter Tutorial: ((tutor10|Prev)) | ((tutor00|Up)) | ((tutor12|Next)) .end